From 43eeff8f155c11c7c744a1142c9e434e364f2618 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 16 Jun 2021 08:45:04 -0400 Subject: [PATCH] examples: Use existing icons The sunny icon doesn't exist anymore. --- examples/sunny.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/sunny.c b/examples/sunny.c index fafc1f2a1b..c4aeba52f6 100644 --- a/examples/sunny.c +++ b/examples/sunny.c @@ -12,7 +12,7 @@ new_window (GApplication *app, gtk_application_window_set_show_menubar (GTK_APPLICATION_WINDOW (window), TRUE); gtk_window_set_default_size ((GtkWindow*)window, 640, 480); gtk_window_set_title (GTK_WINDOW (window), "Sunny"); - gtk_window_set_icon_name (GTK_WINDOW (window), "sunny"); + gtk_window_set_icon_name (GTK_WINDOW (window), "weather-clear-symbolic"); header = gtk_header_bar_new (); gtk_window_set_titlebar (GTK_WINDOW (window), header); @@ -78,7 +78,7 @@ show_about (GSimpleAction *action, gtk_show_about_dialog (NULL, "program-name", "Sunny", "title", "About Sunny", - "logo-icon-name", "sunny", + "logo-icon-name", "weather-clear-symbolic", "comments", "A cheap Bloatpad clone.", NULL); } -- 2.30.2